projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ece59c4
)
(replace_range): For undo, record insertion first.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 29 Apr 2007 21:56:23 +0000
(21:56 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 29 Apr 2007 21:56:23 +0000
(21:56 +0000)
src/insdel.c
patch
|
blob
|
history
diff --git
a/src/insdel.c
b/src/insdel.c
index 7f15f7de52d40249758f1ffbe86f7303cb44b88d..65d60b6b8e335af1c41e3969624b3b1d46b3e8ec 100644
(file)
--- a/
src/insdel.c
+++ b/
src/insdel.c
@@
-1603,8
+1603,12
@@
replace_range (from, to, new, prepare, inherit, markers)
if (! EQ (current_buffer->undo_list, Qt))
{
+ /* Record the insertion first, so that when we undo,
+ the deletion will be undone first. Thus, undo
+ will insert before deleting, and thus will keep
+ the markers before and after this text separate. */
+ record_insert (from + SCHARS (deletion), inschars);
record_delete (from, deletion);
- record_insert (from, inschars);
}
GAP_SIZE -= outgoing_insbytes;